home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Tools / vuser / Makefile < prev    next >
Encoding:
Makefile  |  1995-06-20  |  1.4 KB  |  43 lines

  1. # Makefile - This file contains the make rules for the vuser program.
  2. #
  3. #    Copyright 1989 by Jeffrey F. Lawhorn  (jeffl@berick.uucp)
  4. #
  5. #    This file is part of vuser.
  6. #
  7. #    vuser is free software; you can redistribute it and/or modify it
  8. #    under the terms of the GNU General Public License as published by
  9. #    the Free Software Foundation; either version 1, or (at your
  10. #    option) any later version.
  11. #
  12. #    vuser is distributed in the hope that it will be useful, but
  13. #    WITHOUT ANY WARRANTY; without even the implied warranty of
  14. #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15. #    General Public License for more details.
  16. #
  17. #    You should have received a copy of the GNU General Public License
  18. #    along with GNU CC; see the file COPYING.  If not, write to the
  19. #    Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  20.  
  21. # $Id: Makefile,v 1.1 89/12/15 21:31:56 jeffl Exp $
  22.  
  23. #
  24. # Define SYSV when compiling on System V.
  25. # Define TIMEOUT_IS_LONG if your timeout value in select is a long
  26. #    rather than a struct timeval.
  27.  
  28. # CFLAGS = -O -DSYSV -DTIMEOUT_IS_LONG
  29. CFLAGS = -g -DSYSV
  30.  
  31. # some of us use smart C compilers.
  32. CC=cc
  33.  
  34. # add any machine specific libraries you need to link to get select.
  35. # LIBS = -luipc
  36. LIBS = 
  37.  
  38. CFILES = main.c pty.c tty.c slave.c havefun.c
  39. OFILES = main.o pty.o tty.o slave.o havefun.o
  40.  
  41. vuser: $(OFILES)
  42.     $(CC) -o vuser $(OFILES) $(LIBS)
  43.